Adds the specified number of minutes to the value of this instance.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(DateTime), | intent(in) | :: | time1 | |||
integer, | intent(in) | :: | step |
FUNCTION AddMinutes & ! (time1, step) & ! RESULT (time2) USE Units, ONLY: & ! Imported parameters: minute IMPLICIT NONE ! Arguments with intent(in): TYPE (DateTime), INTENT(IN) :: time1 INTEGER, INTENT(IN) :: step ! Local variables: TYPE (DateTime):: time2 !------------end of declaration------------------------------------------------ time2 = AddSeconds (time1, INT(step * minute) ) END FUNCTION AddMinutes